home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 17 / MacFormat 17 (Spain) / MacFormat 17.bin / Extras / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Whose Examples < prev   
Encoding:
Text File  |  1996-01-24  |  504 b   |  11 lines

  1. tell application "FileMaker Pro"
  2.     show every record of database 1
  3.     show every record of database 2
  4.     get data (every record of database 1 whose last cell = 7)
  5.     every record whose cell "a" = 1 and cell 2 contains "cat"
  6.     show (every record of database 1 whose first cell = "test")
  7.     show (every record of database 1 whose fourth cell = "")
  8.     show (every record of database 1 whose fourth cell ≠ "")
  9.     duplicate (every record whose first cell = "test")
  10.     delete (middle record whose first cell = "test")
  11. end tell